From: Kouya Shimura Date: Thu, 20 Jan 2011 16:41:23 +0000 (+0000) Subject: xend: pci.py: fix open file descriptor leak X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~10900 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=c398531ffaf46fb275782f0935a332094a17a030;p=xen.git xend: pci.py: fix open file descriptor leak I got the following error: $ xm pci-list-assignable-devices Error: [Errno 24] Too many open files Signed-off-by: Kouya Shimura --- diff --git a/tools/python/xen/util/pci.py b/tools/python/xen/util/pci.py index 2fad278aa6..b889d1816e 100644 --- a/tools/python/xen/util/pci.py +++ b/tools/python/xen/util/pci.py @@ -922,10 +922,12 @@ class PciDevice: pos = PCI_CAPABILITY_LIST try: + fd = None fd = os.open(path, os.O_RDONLY) os.lseek(fd, PCI_STATUS, 0) status = struct.unpack('H', os.read(fd, 2))[0] if (status & 0x10) == 0: + os.close(fd) # The device doesn't support PCI_STATUS_CAP_LIST return 0 @@ -952,6 +954,8 @@ class PciDevice: os.close(fd) except OSError, (errno, strerr): + if fd is not None: + os.close(fd) raise PciDeviceParseError(('Error when accessing sysfs: %s (%d)' % (strerr, errno))) return pos